home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / sox / com / commerceone / CBL / n1_0 / ProdCatDoc.mod < prev    next >
Encoding:
Extensible Markup Language  |  2000-07-03  |  2.0 KB  |  65 lines  |  [STrk/SCPL]

  1. <?xml version="1.0"?>
  2. <!DOCTYPE schema SYSTEM "urn:x-commerceone:document:com:commerceone:xdk:xml:schema.dtd$1.0">
  3.  
  4. <schema uri="urn:x-commerceone:document:com:commerceone:CBL:CBL.sox$1.0" >
  5.  
  6. <intro>
  7. <p>Copyright Notice</p>
  8. <p>Common Business Library 2.0<br/>
  9. Copyright 1999 Commerce One, Inc.</p>
  10. <p>Permission is granted to use, copy, modify and distribute the DTD's, schemas
  11. and modules in the Commerce One Common Business Library Version 2.0 subject to the terms
  12. and conditions specified at http://www.marketsite.net/xml/cbl/copyright.html</p> 
  13. </intro>
  14.     <!-- 
  15.         <![CDATA[
  16.             A ProdCatDoc identifies standard documents for a product.
  17.             Standard documents include things like a Certificate of Origin.
  18.             
  19.             Example XML:
  20.                 <Document>
  21.                     <DocName>CertOfOrigin</DocName>
  22.                     <DocNum>N1728</DocNum>
  23.                 </Document>
  24.     
  25.             More Complex XML:            
  26.                 <Document>
  27.                     <DocName>Other</DocName>
  28.                     <DocNameOther>Extended Warranty Info</DocNameOther>
  29.                     <Agency AgencyID=AssignedBySupplier />
  30.                     <DocNum>ExWarranty99.3</DocNum>
  31.                 </Document>
  32.         ]]>                    
  33.      -->
  34.  
  35.     <elementtype name="ProdCatDoc">
  36.         <model>
  37.             <sequence>
  38.                 <!--  The DocName identifies the name of
  39.                 the document.  Example: Certificate of Origin. / -->
  40.                 <element type="DocumentCode" name="DocName" occurs="?" />
  41.                 
  42.                 <!--  If DocName is Other or not provided, the name
  43.                     of the document is specified in DocNameOther. / -->
  44.                 <element type="string" name="DocNameOther" occurs="?" />
  45.                 
  46.                 <!--  The responsible agency for the document
  47.                 identified by DocName. / -->
  48.                 <element type="Agency" occurs="?" />
  49.                 
  50.                 <!--  The Reference number assigned to the document
  51.                 by the document issuer. / -->
  52.                 <element type="string" name="DocNum" occurs="?"/>                
  53.             </sequence>
  54.         </model>
  55.     </elementtype>
  56.  
  57.     <!--  A container for a list of one or more ProdCatDoc / -->    
  58.     <elementtype name="ListOfProdCatDoc">
  59.         <model>
  60.             <element type="ProdCatDoc" occurs="+" />
  61.         </model>
  62.     </elementtype>
  63.     
  64. </schema>
  65.